+Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
+ (gtk_entry_completion_insert_action_text),
+ (gtk_entry_completion_insert_action_markup): the gchar* parameters
+ should be const (pointed out by both Marco Pesenti Gritti and
+ Murray Cumming (#124356).
+
Sat Oct 11 15:37:19 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkcombobox.c (gtk_combo_box_size_allocate): for the custom
+Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
+ (gtk_entry_completion_insert_action_text),
+ (gtk_entry_completion_insert_action_markup): the gchar* parameters
+ should be const (pointed out by both Marco Pesenti Gritti and
+ Murray Cumming (#124356).
+
Sat Oct 11 15:37:19 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkcombobox.c (gtk_combo_box_size_allocate): for the custom
+Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
+ (gtk_entry_completion_insert_action_text),
+ (gtk_entry_completion_insert_action_markup): the gchar* parameters
+ should be const (pointed out by both Marco Pesenti Gritti and
+ Murray Cumming (#124356).
+
Sat Oct 11 15:37:19 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkcombobox.c (gtk_combo_box_size_allocate): for the custom
+Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
+ (gtk_entry_completion_insert_action_text),
+ (gtk_entry_completion_insert_action_markup): the gchar* parameters
+ should be const (pointed out by both Marco Pesenti Gritti and
+ Murray Cumming (#124356).
+
Sat Oct 11 15:37:19 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkcombobox.c (gtk_combo_box_size_allocate): for the custom
+Sat Oct 11 15:47:03 2003 Kristian Rietveld <kris@gtk.org>
+
+ * gtk/gtkentrycompletion.[ch] (gtk_entry_completion_insert_action),
+ (gtk_entry_completion_insert_action_text),
+ (gtk_entry_completion_insert_action_markup): the gchar* parameters
+ should be const (pointed out by both Marco Pesenti Gritti and
+ Murray Cumming (#124356).
+
Sat Oct 11 15:37:19 2003 Kristian Rietveld <kris@gtk.org>
* gtk/gtkcombobox.c (gtk_combo_box_size_allocate): for the custom
static void gtk_entry_completion_insert_action (GtkEntryCompletion *completion,
gint index,
- gchar *string,
+ const gchar *string,
gboolean markup);
static void gtk_entry_completion_action_data_func (GtkTreeViewColumn *tree_column,
GtkCellRenderer *cell,
static void
gtk_entry_completion_insert_action (GtkEntryCompletion *completion,
gint index,
- gchar *string,
+ const gchar *string,
gboolean markup)
{
GtkTreeIter iter;
void
gtk_entry_completion_insert_action_text (GtkEntryCompletion *completion,
gint index,
- gchar *text)
+ const gchar *text)
{
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
g_return_if_fail (text != NULL);
void
gtk_entry_completion_insert_action_markup (GtkEntryCompletion *completion,
gint index,
- gchar *markup)
+ const gchar *markup)
{
g_return_if_fail (GTK_IS_ENTRY_COMPLETION (completion));
g_return_if_fail (markup != NULL);
void gtk_entry_completion_insert_action_text (GtkEntryCompletion *completion,
gint index,
- gchar *text);
+ const gchar *text);
void gtk_entry_completion_insert_action_markup (GtkEntryCompletion *completion,
gint index,
- gchar *markup);
+ const gchar *markup);
void gtk_entry_completion_delete_action (GtkEntryCompletion *completion,
gint index);